   body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    header {
      text-align: center;
      background-color: #f1f1f1;
      padding: 20px;
    }

    header h1 {
      margin: 0;
    }

    .subscription-container {
      max-width: 1200px;
      margin: 20px auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .subscription-plan {
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 20px;
      width: 300px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      background-color: #f9f9f9;
    }

    .subscription-plan h2 {
      margin: 10px 0;
      font-size: 22px;
      color: #333;
    }

    .subscription-plan p {
      font-size: 16px;
      color: #555;
      margin: 10px 0;
    }

    .subscription-plan .price {
      font-size: 24px;
      font-weight: bold;
      color: #007BFF;
      margin: 15px 0;
    }

    .subscription-plan button {
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      color: white;
      background-color: #007BFF;
      cursor: pointer;
      transition: 0.3s;
    }

    .subscription-plan button:hover {
      background-color: #0056b3;
    }

    footer {
      text-align: center;
      background-color: #f1f1f1;
      padding: 10px;
      margin-top: 20px;
    }

    //////////////////////////////////


.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #333;
  width: 100%;
  padding: 10px;
  z-index: 1000;
}

.hamburger {
  font-size: 30px;
  color: white;
  cursor: pointer;

}

.menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 10%;
  background-color: #333;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu ul li {
  padding: 15px;
  text-align: center;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.menu ul li a:hover {
  color:green;
  font-size:30px;
  transition:2s ease;
}

#content {
  padding: 50px;
}

//////////////////